home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Taifun / Taifun 056 (1988-05-15)(Ossowski, Stefan)(DE)(PD).zip / Taifun 056 (1988-05-15)(Ossowski, Stefan)(DE)(PD).adf / Mackie / README < prev    next >
Text File  |  1988-04-13  |  4KB  |  89 lines

  1. This is a POPCLI replacement, written by Radical Eye Software.  It has
  2. been made to work with Manx, and no suitability for Lattice is
  3. guaranteed.  Before you dismiss this as boring, though, give it a
  4. shot.  Really, you might like it!
  5.  
  6. Usage is simply:
  7.  
  8.    run mackie [-q] [-l] [-b] [command] [time]
  9.  
  10. Note that it doesn't automatically detach itself, so the `RUN' is
  11. necessary.  The first time you run it, it loads itself into RAM.
  12. Subsequent invocations need not be `run', as they notice the running
  13. portion of the program and simply send new parameters to it.
  14.  
  15. The options mean:
  16.  
  17.    -q  Quit.  Remove the resident portion from memory.
  18.    -l  Lines.  Draw fancy lines instead of a blank screen.  (Default)
  19.    -b  Blank.  Draw a blank screen instead of fancy lines.
  20.  
  21. A time is an argument that starts with a digit; this time is in seconds.
  22. After that much inactivity, the screen blanking starts.
  23.  
  24. A command is an argument that starts with neither digits nor a hyphen.
  25. This is the command executed whenever left-amiga ESC is pressed.
  26.  
  27. Thus, the command
  28.  
  29.    run mackie "newcli con:10/10/640/200/MackieCLI"
  30.  
  31. starts mackie up, and sets the command to be executed to a NewCLI with a
  32. specified size.  Later, if you want to see the screen blanking feature
  33. quickly, just type
  34.  
  35.    mackie 1
  36.  
  37. and in a second, the screen will go blank.  If the lines are driving you
  38. wild, you might type
  39.  
  40.    mackie -b
  41.  
  42. to turn them off.  Finally, you need every byte of memory, so you want to
  43. remove mackie.  Simply type
  44.  
  45.    mackie -q
  46.  
  47. That's all there is to it.
  48.  
  49. Enjoy this program!  Send bug reports to Tomas Rokicki, Box 2081,
  50. Stanford, CA  94309.
  51.  
  52. Based on:
  53.  
  54. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  55. /* |_o_o|\\ Copyright (c) 1986 The Software Distillery.  All Rights Reserved */
  56. /* |. o.| || This program may not be distributed without the permission of   */
  57. /* | .  | || the authors.                                                    */
  58. /* | o  | ||    Dave Baker     Ed Burnette  Jay Denebeim John Mainwaring     */
  59. /* |  . |//     Gordon Keener  Jack Rouse   John Toebes  Doug Walker         */
  60. /* ======                    BBS:(919)-471-6436                              */ 
  61. /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
  62.  
  63. POPCLI III by John Toebes © 1987 The Software Distillery.  All Rights Reserved
  64.  235 Trillingham Ln, Cary, NC 27511
  65.  
  66. Contributions to continue development of this and other fine products for the
  67. Amiga should be sent to the Software Distillery at the above address.
  68.  
  69. Other Products produced by the Software Distillery are:
  70.    BLINK    - the Turbo-charged Alink replacement
  71.    HACK     - The Amiga port of the famous UNIX game
  72.    LARN     - Another famous UNIX game
  73.    MEMWATCH - Protects your machine from random trashes
  74.    MAKE     - A software development tool one shouldn't be without
  75.    KERMIT   - The World renown file transfer protocol brought to the Amiga
  76.    ICONEXEC, SETALTERNATE, SETWINDOW - Icon manipulation tools
  77.    TSIZE    - A short utility for determining directory sizes.
  78. All of these are available on our BBS.
  79.  
  80. Permission is hereby granted to distribute this program provided both this
  81. documentation accompanies the executable and that no charge is made for its
  82. distribution.
  83.  
  84. POPCLI (pronounced POP-SEE-EL-EYE) is designed to solve two problems at once.
  85. First it provides a simple way of starting another CLI at any time without
  86. having to load workbench or exit whatever program you may be using.  Second
  87. it has a builtin screen saver mode that automatically turns off the Amiga
  88. display when there has been no input for a given period of time.
  89.